summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/BeaconEntity.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/BlockEntities/BeaconEntity.h')
-rw-r--r--src/BlockEntities/BeaconEntity.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/BlockEntities/BeaconEntity.h b/src/BlockEntities/BeaconEntity.h
index 8403dfa01..21c35610d 100644
--- a/src/BlockEntities/BeaconEntity.h
+++ b/src/BlockEntities/BeaconEntity.h
@@ -16,18 +16,15 @@
// tolua_begin
-class cBeaconEntity:
+class cBeaconEntity :
public cBlockEntityWithItems
{
// tolua_end
using Super = cBlockEntityWithItems;
-
public: // tolua_export
- BLOCKENTITY_PROTODEF(cBeaconEntity)
-
cBeaconEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World);
// cBlockEntity overrides:
@@ -77,12 +74,9 @@ public: // tolua_export
// tolua_end
protected:
+
bool m_IsActive;
char m_BeaconLevel;
cEntityEffect::eType m_PrimaryEffect, m_SecondaryEffect;
} ; // tolua_export
-
-
-
-